home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Joystick Magazine 1995 November (Mac)
/
cd No7 joystick No65 novembre 1995.iso
/
mac
/
Fouillationnons!
/
Jeux
/
Xconq 7.0.1
/
doc
/
getsyms.sh
< prev
next >
Wrap
Linux/UNIX/POSIX Shell Script
|
1995-08-22
|
225b
|
8 lines
#!/bin/sh
# This script extracts GDL symbols defined in the input file.
grep '@deffn' $1 | grep '@code' | grep -v '@c ' | sed -e 's/^.*@deffn \([^ ]*\) @code{\([^{ }]*\)}.*$/\2 \1/' | sed -e 's/@@/@/' | sort | uniq
exit 0